regexp.inputString.str (field)
15 uses
regexp (current package)
exec.go#L62: i.string.str = s
exec.go#L81: i.string.str = ""
regexp.go#L388: str string
regexp.go#L392: if pos < len(i.str) {
regexp.go#L393: c := i.str[pos]
regexp.go#L397: return utf8.DecodeRuneInString(i.str[pos:])
regexp.go#L407: return strings.HasPrefix(i.str, re.prefix)
regexp.go#L411: return strings.Index(i.str[pos:], re.prefix)
regexp.go#L417: if uint(pos-1) < uint(len(i.str)) {
regexp.go#L418: r1 = rune(i.str[pos-1])
regexp.go#L420: r1, _ = utf8.DecodeLastRuneInString(i.str[:pos])
regexp.go#L424: if uint(pos) < uint(len(i.str)) {
regexp.go#L425: r2 = rune(i.str[pos])
regexp.go#L427: r2, _ = utf8.DecodeRuneInString(i.str[pos:])
regexp.go#L799: is := inputString{str: s}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |